home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / By the Book / Learn C++ (CodeWarrior) / Chap 04.01 - cout / cout.cp < prev    next >
Text File  |  1995-10-20  |  241b  |  13 lines

  1. #include <iostream.h>
  2.  
  3. int    main()
  4. {
  5.     char    *name = "Dr. Crusher";
  6.     
  7.     cout << "char:    " << name[ 0 ] << '\n'
  8.     << "short:   " << (short)(name[ 0 ]) << '\n'
  9.     << "string:  " << name << '\n'
  10.     << "address: " << (unsigned long)name;
  11.     
  12.     return 0;
  13. }